home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- buttonClick3()
- end
-
- on mouseUp
- global gUserName
- set NameCheck to the text of member "UserName"
- if NameCheck = "Type your name here" then
- alert("Please personalize your copy of Al Morale by entering your name.")
- go(the frame)
- else
- if length(field "UserName") = 0 then
- alert("Please personalize your copy of Al Morale by entering your name.")
- go(the frame)
- else
- set the editable of member "LOCKname" to 1
- set gUserName to the text of member "UserName"
- put the text of member "UserName" into field "LOCKname"
- set the editable of member "LOCKname" to 0
- go(the frame + 1)
- end if
- end if
- end
-